* This script assembles the file {prog}. If specific subroutines are
* to be assembled, type their names, each seperated by a space, after
* the command name. That's it - jm.

set AuxType $4006
set prog hex
if {#} == 0
  assemble +w asm.{prog}
else
 for parm
   set list {list} {parm}
 end
  assemble +w asm.{prog} NAMES=({list})
end

lk
